home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / misc / e-n / hsc / example / macro.hsc next >
Text File  |  1995-10-08  |  935b  |  32 lines

  1. <*
  2. ** here are the macros to our example project
  3. *>
  4. <$macro ITS_ME><ADDRESS>Its Me(me@some.where)</ADDRESS></$macro>
  5. <$macro WEBPAGE>
  6. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">        <* SGML header *>
  7. <html>
  8. <!-- this page was designed using hsc -->           <* important comment *>
  9. </$macro>
  10. <*-------------------------------------*>
  11. <$macro /WEBPAGE>
  12. </body>                      <* closing BODY started in HEADING *>
  13. </html>                      <* closing HTML started in WEBPAGE *>
  14. </$macro>
  15. <*-------------------------------------*>
  16. <$macro HEADING TITLE:string>
  17. <head>
  18.   <title>                    <* insert title and heading *>
  19.     <$insert text=<TITLE>>
  20.   </title>
  21.   <h1>
  22.     <$insert text=<TITLE>>
  23.   </h1>
  24. </head>
  25. <body>                       <* BODY starts here, but ends in </WEBPAGE> *>
  26. </$macro>
  27. <*-------------------------------------*>
  28. <$macro FOOTLINE>
  29. <hr>
  30.   Updated by <ITS_ME> at <$insert time>
  31. </$macro>
  32.